home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 21 code / Custom GX Printer Drivers / CustomWriter GX 1.0.1 / OldApp.a < prev    next >
Encoding:
Text File  |  1995-05-03  |  926 b   |  41 lines  |  [TEXT/MPS ]

  1. ;------------------------------------------------------------------------------
  2. ;
  3. ;    FILENAME
  4. ;        OldApp.a
  5. ;
  6. ;    DESCRIPTION
  7. ;        Contains the jump table for the old-application compatibility
  8. ;        messages we override.
  9. ;
  10. ;    COPYRIGHT
  11. ;        Copyright © 1995 Apple Computer, Inc.
  12. ;        All rights reserved.
  13. ;    
  14. ;    Modification history
  15. ;        05/03/95 - Dave Hersey -    Version 1.0.1 to fix some minor bugs in
  16. ;                                    CustomBufferingAndIO.c.
  17. ;
  18. ;        01/14/95 - Dave Hersey -    Created from the shell of a hollowed-out
  19. ;                                    ImageWriter driver.
  20. ;
  21. ;--------------------------------------------------------------------------------
  22.  
  23.                 CASE     OBJ
  24.                 STRING    ASIS
  25.  
  26. SD_JumpTable    PROC    EXPORT
  27.                 dc.l    0
  28.     
  29. ; Overrides for the compatibility messages we override
  30.  
  31.                 IMPORT    SD_ConvertPrintRecordTo
  32.                 JMP        SD_ConvertPrintRecordTo
  33.  
  34.                 IMPORT    SD_ConvertPrintRecordFrom
  35.                 JMP        SD_ConvertPrintRecordFrom
  36.  
  37.                 IMPORT    SD_PrValidate
  38.                 JMP        SD_PrValidate
  39.     
  40.     END
  41.